home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / misc / emu / Apex-src.lha / HELP.XPL < prev    next >
Text File  |  2001-09-30  |  4KB  |  184 lines

  1. \HELP.XPL    JUL-02-88
  2. \This program displays a series of screens which summarize Apex, V1.8 commands.
  3. \
  4. \REVISION HISTORY:
  5. \MAR-03-86, Original.
  6. \AUG-86, Convert to lower case.
  7. \APR-10-87, Changed string termination.
  8. \JUL-02-88, Changed messages slightly.
  9.  
  10. code CHIN=7, CHOUT=8, CRLF=9, TEXT=12, OPENI=13;
  11.  
  12.  
  13. proc    PAGE(STR);    \Display a page of text
  14. addr    STR;
  15. int    I;
  16. begin
  17. CHOUT(0,$0C);                \Clear screen
  18. TEXT(0,STR);                \Display page of text
  19. OPENI(0);   I:=CHIN(0);            \Wait for return
  20. end;    \PAGE
  21.  
  22.  
  23. begin    \MAIN
  24. PAGE("      -- APEX, V1.8 COMMANDS --
  25.  
  26. (The common commands are listed first.)
  27.  
  28. CTRL-C        Restarts Apex.
  29.  
  30. CTRL-P        Saves the current memory
  31.         image in SCRATCH.SYS and
  32.         reloads & restarts Apex.
  33.  
  34. DA(TE) (FILE)    Changes the system date
  35. DA        or dates specified file.
  36.  
  37. DI(RECT) UNIT    Shows the directory of a
  38. DI 0        unit.
  39. /N /E /S /D /L    Sort by: Name, Extension,
  40.         Size, Date or Location.
  41.  
  42. LI(ST) FILE    Displays the contents
  43. LI FROG.TXT    of the specified file.
  44.  
  45. DE(LETE) FILE    Removes files from the
  46. DE FROG.*    directory.
  47.     (Press return to continue.) ");
  48.  
  49.  
  50. PAGE(
  51. "CTRL-S        Stops the display.
  52.  
  53. DF(AULT) (FILE)    Shows (or sets) the de-
  54. DF 0:FROG.TXT    fault unit & file name.
  55.  
  56. DO OPTION    Enables the specified
  57. DO PACK        option: PA(CK), CH(ECK),
  58.         BA(CKUP) and AB(ORT).
  59.  
  60. NO OPTION    Disables the specified
  61. NO PA        option.
  62.  
  63. NE(W)        Lets Apex know that you
  64.         changed diskettes.
  65.         (CTRL-C also does this.)
  66.  
  67. SA(VE) FILE    Writes the memory image
  68. SA =$800,$FFF    into specified .SAV file.
  69.  
  70. RE(NAME) FL<FL    Changes the name of a
  71. RE NEW<OLD    file in the directory.
  72.  
  73. TI(TLE) STRING    Changes the title of a
  74. TI WORK DISK    unit. ");
  75.  
  76.  
  77. PAGE(
  78. "MA(KE) FILE    Creates a new file.
  79. MA FROG=20,407    E.g: 20 blocks at 407.
  80.  
  81. BD(IRECTORY)    Shows the backup
  82. BD FR?G.*    directory of a unit.
  83.     /W    Writes the backup
  84.         dir. over the main dir.
  85.     /B    Writes the main dir.
  86.         over the backup dir.
  87.  
  88. ST(ART)        Starts the program saved
  89.         by a CTRL-P.
  90.  
  91. SW(AP)        Reloads the memory image
  92.         saved by a CTRL-P and
  93.         enters the debugger.
  94.  
  95. GE(T) FILE    Loads specified file and
  96. GET FROG(.SAV)    enters the debugger.
  97.  
  98. OP(EN) FILE(S)    Opens specified files
  99. OP FROG>FISH    for input and/or output.
  100.     /R    Replaces input file with
  101.         output file. ");
  102.  
  103.  
  104. PAGE(
  105. "CL(OSE)        Closes any output file.
  106.  
  107. SY(STEM) (UNIT)    Shows (or reboots from
  108.         specified) system unit.
  109.  
  110. SI(ZE) UNIT    Shows, or changes, the
  111. SI 1=2560    size of specified unit.
  112.  
  113. ZE(RO) UNIT    Deletes all files in
  114. ZE 1        the directory of a
  115.         specified unit.
  116.  
  117. LO(CK) UNIT    Prevents a unit from
  118. LO 1        being written to.
  119.  
  120. UN(LOCK) UNIT    Unlocks a unit.
  121.  
  122. SU(BDIR) (FILE)    Enters a sub-directory
  123. SU 1:WORK(.SBD)    or returns to root dir.
  124. SU        if no file is specified.
  125.  
  126. FROG/E =200    Runs FROG.SAV instead
  127.         of FROG.CMD.  Minimum
  128.         out file is 200 blocks.");
  129.  
  130.  
  131. PAGE("      -- COMMON UTILITY PROGRAMS --
  132.  
  133. ED FILE        Starts the text editor.
  134.         (Must first MAKE new
  135.         files.)
  136.  
  137. PR FILE        Prints specified file.
  138.  
  139. COPY        Copies individual files.
  140.  
  141. DUP        Duplicates an entire
  142.         diskette.
  143.  
  144. SQ UNIT        Squashes files together.
  145.  
  146. SET FILE    Sets up .SAV file
  147.         parameters.
  148.  
  149. INSTALL FILE    Installs I/O handlers
  150.         such as for the printer.
  151.  
  152. CONFIG        Displays the currently
  153.         installed handlers. ");
  154.  
  155.  
  156. PAGE("     -- COMMON FILE EXTENSIONS --
  157.  
  158.  
  159. .BAK    Backup file (may be any kind)
  160.  
  161. .CMD    Command file (executable)
  162.  
  163. .DOC    Documentation file
  164.  
  165. .OBJ    Object file (loadable)
  166.  
  167. .SAV    Saved memory image (executable)
  168.  
  169. .SBD    Sub-directory
  170.  
  171. .SYS    System file (for Apex only)
  172.  
  173. .TXT    Text file
  174.  
  175. .XPL    XPL source code for compiler
  176.  
  177. .68K    68000 source code for assembler ");
  178.  
  179. end;    \MAIN
  180. r Apex only)
  181.  
  182. .TXT    Text file
  183.  
  184. .XPL    XPL source code for